home *** CD-ROM | disk | FTP | other *** search
/ Mission to McDonaldLand / Mission To McDonaldLand.iso / uwater.dxr / 00297_Script_camera < prev    next >
Text File  |  1998-10-25  |  394b  |  18 lines

  1. on mouseDown me
  2.   global camera
  3.   if camera = 1 then
  4.     set the member of sprite the spritenum of me = "takepic1"
  5.     printFrom 500, 500
  6.   end if
  7.   if camera = 0 then
  8.     set the member of sprite the spritenum of me = "takepic2"
  9.     set camera = 1
  10.   end if
  11. end
  12.  
  13. on mouseleave me
  14.   global camera
  15.   set camera = 0
  16.   set the member of sprite the spritenum of me = "takepic1"
  17. end
  18.